home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource3
/
163_01
/
feof.c
< prev
next >
Wrap
Text File
|
1988-02-01
|
384b
|
10 lines
/*
** test for EOF on stream
*/
#define FILE int
#include "streamio.h"
feof(stream) FILE *stream; {
return ((stream[_IOB_FLAG] & _EOF) != 0);
}